Sample plots
Sunburst graph plot
Let’s just learn the concept of sunburst graph
library(plotly)
plot_ly(labels = c("Epcam+",
"Trop2+", "Trop2-",
"Trop2+EGFR+", "Trop2+EGFR-", "Trop2-EGFR+", "Trop2-EGFR-",
"Trop2+EGFR+HER2+","Trop2+EGFR+HER2-","Trop2-EGFR+HER2+","Trop2-EGFR+HER2-"),
parents = c("",
"Epcam+", "Epcam+",
"Trop2+", "Trop2+", "Trop2-", "Trop2-",
"Trop2+EGFR+","Trop2+EGFR+","Trop2-EGFR-","Trop2-EGFR-"),
values = c(46, 37, 9, 14, 23, 5, 4, 0, 14, 4,1),
type = 'sunburst')
More example plots will be updated.